Function Reference

ConsoleWriteError

Writes data to the stderr stream. Some text editors can read this stream as can other programs which may be expecting data on this stream.

ConsoleWriteError ( "data" )

 

Parameters

data The data you wish to output.

 

Return Value

None.

 

Remarks

The purpose for this function is to write to the stderr stream. Many popular text editors can read this stream.

This does not write to a DOS console.

 

Related

ConsoleWrite

 

Example


Local $var = "Test"
ConsoleWriteError("var=" & $var)
; Running this in a text editor which can trap console output should produce "var=Test"